home *** CD-ROM | disk | FTP | other *** search
/ PCMania 30 / PCMania CD30.iso / pcmania / graf30 / tacs / appstruc.h next >
Text File  |  1987-07-22  |  826b  |  46 lines

  1. /*  Include file for application prg, with build structure */
  2.  
  3. /*  Field structure */
  4.  
  5. struct    apps_field_struc
  6.      {
  7.     short    tag_img_width;
  8.     short    wid_byt_len;
  9.     short    img_wid_val;
  10.     short    tag_img_length;
  11.     short    image_len;
  12.     short    img_len_val;
  13.  
  14. /* 9/11 for compression */
  15.     short    tag_compress;
  16.     short    comp_byt_len;
  17.     short    comp_val;
  18.  
  19.     short    tag_photo;
  20.     short    photo_byt_len;
  21.     short    photo_val;
  22. /*    short    tag_rwprstrp;
  23.     short    rwstrp_len;
  24.     long    rwstrp_val;    */
  25.     short    tag_xresol;
  26.     short    xresol_len;
  27.     long    x_resol_num;
  28.     long    x_resol_den;
  29.     short    tag_yresol;
  30.     short    yresol_len;
  31.     long    y_resol_num;
  32.     long    y_resol_den;
  33.     short    tag_planar;
  34.     short    planar_len;
  35.     short    planar_val;
  36.      } app_fields;
  37.  
  38.  
  39. /*  menu structure */
  40.  
  41.    struct user_interface
  42.      {
  43.      int    vertical_length;
  44.      } menu_user;
  45.  
  46.